home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-26 | 461 b | 19 lines | [TEXT/CWIE] |
-
- // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
- // free source code - do whatever you like with it
-
- // resource access for application
- // could be expanded to allow multiple open files and the "chaining"
- // as the Mac resource manager does
-
- #ifndef reschain_H
- #define reschain_H
-
- void OpenResourceFile( const char* );
- void CloseResourceFile();
- void* GetResourcePtr( long type, int id );
- void ReleaseResourcePtr( void* );
-
- #endif
-
-